home *** CD-ROM | disk | FTP | other *** search
- package javax.help;
-
- import java.awt.Component;
- import java.awt.Dimension;
- import java.awt.Font;
- import java.awt.MenuItem;
- import java.awt.Point;
- import java.net.URL;
- import java.util.Locale;
-
- public interface HelpBroker {
- void setHelpSet(HelpSet var1);
-
- HelpSet getHelpSet();
-
- Locale getLocale();
-
- void setLocale(Locale var1);
-
- Font getFont();
-
- void setFont(Font var1);
-
- void setCurrentView(String var1);
-
- String getCurrentView();
-
- void initPresentation();
-
- void setDisplayed(boolean var1) throws UnsupportedOperationException;
-
- boolean isDisplayed();
-
- void setLocation(Point var1) throws UnsupportedOperationException;
-
- Point getLocation() throws UnsupportedOperationException;
-
- void setSize(Dimension var1) throws UnsupportedOperationException;
-
- Dimension getSize() throws UnsupportedOperationException;
-
- void setViewDisplayed(boolean var1);
-
- boolean isViewDisplayed();
-
- void setCurrentID(Map.ID var1) throws InvalidHelpSetContextException;
-
- void setCurrentID(String var1) throws BadIDException;
-
- Map.ID getCurrentID();
-
- void setCurrentURL(URL var1);
-
- URL getCurrentURL();
-
- void enableHelpKey(Component var1, String var2, HelpSet var3);
-
- void enableHelp(Component var1, String var2, HelpSet var3);
-
- void enableHelp(MenuItem var1, String var2, HelpSet var3);
-
- void enableHelpOnButton(Component var1, String var2, HelpSet var3) throws IllegalArgumentException;
-
- void enableHelpOnButton(MenuItem var1, String var2, HelpSet var3);
- }
-